home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 32 / Amiga Format AFCD32 (Nov 1998, Issue 117).iso / -seriously_amiga- / programming / other / cgraphx / c / examples / makefile < prev    next >
Makefile  |  1998-08-10  |  156b  |  11 lines

  1. CC = gcc
  2.  
  3. CFLAGS = -s -O2 -noixemul
  4.  
  5. Window: Window.c
  6.     -echo "Compiling & Linking Window... "
  7.     $(CC) Window.c $(CFLAGS) -o Window
  8.  
  9. clean:
  10.     -delete Window.o
  11.